restore: sign extend p2m when restoring on a host with pfn width <
authorKeir Fraser <keir.fraser@citrix.com>
Wed, 8 Apr 2009 18:10:33 +0000 (19:10 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Wed, 8 Apr 2009 18:10:33 +0000 (19:10 +0100)
guest pfn width

(i.e. 32on64 domain 0 and 64 bit guest domain).

Otherwise P2M entries which were INVALID_P2M_ENTRY
(==0xffffffffffffffff) become 0xffffffff after a migrate.

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
tools/libxc/xc_domain_restore.c

index 4f92ebb5491e46cf4e19cb6901e81bf5db93a1d1..32782e1888983f480b881285eb658176ca20d8c4 100644 (file)
@@ -1197,7 +1197,7 @@ int xc_domain_restore(int xc_handle, int io_fd, uint32_t dom,
      * we need to adjust the live_p2m assignment appropriately */
     if ( guest_width > sizeof (xen_pfn_t) )
         for ( i = p2m_size - 1; i >= 0; i-- )
-            ((uint64_t *)live_p2m)[i] = p2m[i];
+            ((int64_t *)live_p2m)[i] = (long)p2m[i];
     else if ( guest_width < sizeof (xen_pfn_t) )
         for ( i = 0; i < p2m_size; i++ )   
             ((uint32_t *)live_p2m)[i] = p2m[i];